Skip to main content

Delete Destination

Route

/v2/streaming/destinations/{id}

Description

Remove a streaming destination from the system. This operation is irreversible and will permanently delete the destination configuration.

Method

DELETE

Inputs

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the destination to delete

Output

FieldTypeDescription
errorsarray[Error]Any errors encountered during deletion

Rate Limit

  • 60 requests per minute per API key
  • 5 concurrent requests per endpoint

Example Response

{
"errors": []
}

Error Response

{
"errors": [
{
"code": 404,
"message": "Destination not found"
}
]
}